/* SectionWrapper.css */
.section-wrapper {
  position: relative;
  overflow: hidden;
}

.section-wrapper--divider::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--color-accent);
  margin: var(--space-lg) auto 0;
}

.section-wrapper--full-height {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .section-wrapper--divider::after {
    margin-top: var(--space-md);
  }
}
